home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / perl5 / Dpkg.pm < prev    next >
Text File  |  2009-09-20  |  683b  |  25 lines

  1. package Dpkg;
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. # This module is the only one provided by dpkg and not dpkg-dev
  7. #
  8. # Don't add things here if you don't need them in dpkg itself.
  9. # If you do, and also use the new stuff in dpkg-dev, you'll have to bump
  10. # the dependency of dpkg-dev on dpkg.
  11.  
  12. use base qw(Exporter);
  13. our @EXPORT = qw($version $progname $admindir $dpkglibdir $pkgdatadir);
  14.  
  15. our ($progname) = $0 =~ m#(?:.*/)?([^/]*)#;
  16.  
  17. # The following lines are automatically fixed at install time
  18. our $version="1.15.4ubuntu1";
  19. our $admindir="/var/lib/dpkg";
  20. our $dpkglibdir="/usr/lib/dpkg";
  21. our $pkgdatadir="/usr/share/dpkg";
  22. $pkgdatadir = $ENV{DPKG_DATADIR} if defined $ENV{DPKG_DATADIR};
  23.  
  24. 1;
  25.